home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / tex / itrns211.zip / SRC / LEXYYC < prev    next >
Text File  |  1991-12-14  |  58KB  |  1,976 lines

  1. /* A lexical scanner generated by flex */
  2.  
  3. /* scanner skeleton version:
  4.  * $Header: /usr/fsys/odin/a/vern/flex/RCS/flex.skel,v 2.16 90/08/03 14:09:36 vern Exp $
  5.  */
  6.  
  7. #define FLEX_SCANNER
  8.  
  9. #include <stdio.h>
  10.  
  11.  
  12. /* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
  13. #ifdef c_plusplus
  14. #ifndef __cplusplus
  15. #define __cplusplus
  16. #endif
  17. #endif
  18.  
  19.  
  20. #ifdef __cplusplus
  21.  
  22. #include <stdlib.h>
  23. #include <osfcn.h>
  24.  
  25. /* use prototypes in function declarations */
  26. #define YY_USE_PROTOS
  27.  
  28. /* the "const" storage-class-modifier is valid */
  29. #define YY_USE_CONST
  30.  
  31. #else    /* ! __cplusplus */
  32.  
  33. #ifdef __STDC__
  34.  
  35. #ifdef __GNUC__
  36. #include <stddef.h>
  37. void *malloc( size_t );
  38. void free( void* );
  39. #else
  40. #include <stdlib.h>
  41. #endif    /* __GNUC__ */
  42.  
  43. #define YY_USE_PROTOS
  44. #define YY_USE_CONST
  45.  
  46. #endif    /* __STDC__ */
  47. #endif    /* ! __cplusplus */
  48.  
  49.  
  50. #ifdef __TURBOC__
  51. #define YY_USE_CONST
  52. #endif
  53.  
  54.  
  55. #ifndef YY_USE_CONST
  56. #define const
  57. #endif
  58.  
  59.  
  60. #ifdef YY_USE_PROTOS
  61. #define YY_PROTO(proto) proto
  62. #else
  63. #define YY_PROTO(proto) ()
  64. /* we can't get here if it's an ANSI C compiler, or a C++ compiler,
  65.  * so it's got to be a K&R compiler, and therefore there's no standard
  66.  * place from which to include these definitions
  67.  */
  68. char *malloc();
  69. int free();
  70. int read();
  71. #endif
  72.  
  73.  
  74. /* amount of stuff to slurp up with each read */
  75. #ifndef YY_READ_BUF_SIZE
  76. #define YY_READ_BUF_SIZE 8192
  77. #endif
  78.  
  79. /* returned upon end-of-file */
  80. #define YY_END_TOK 0
  81.  
  82. /* copy whatever the last rule matched to the standard output */
  83.  
  84. /* cast to (char *) is because for 8-bit chars, yytext is (unsigned char *) */
  85. /* this used to be an fputs(), but since the string might contain NUL's,
  86.  * we now use fwrite()
  87.  */
  88. #define ECHO (void) fwrite( (char *) yytext, yyleng, 1, yyout )
  89.  
  90. /* gets input and stuffs it into "buf".  number of characters read, or YY_NULL,
  91.  * is returned in "result".
  92.  */
  93. #define YY_INPUT(buf,result,max_size) \
  94.     if ( (result = read( fileno(yyin), (char *) buf, max_size )) < 0 ) \
  95.         YY_FATAL_ERROR( "read() in flex scanner failed" );
  96. #define YY_NULL 0
  97.  
  98. /* no semi-colon after return; correct usage is to write "yyterminate();" -
  99.  * we don't want an extra ';' after the "return" because that will cause
  100.  * some compilers to complain about unreachable statements.
  101.  */
  102. #define yyterminate() return ( YY_NULL )
  103.  
  104. /* report a fatal error */
  105.  
  106. /* The funky do-while is used to turn this macro definition into
  107.  * a single C statement (which needs a semi-colon terminator).
  108.  * This avoids problems with code like:
  109.  *
  110.  *     if ( something_happens )
  111.  *        YY_FATAL_ERROR( "oops, the something happened" );
  112.  *    else
  113.  *        everything_okay();
  114.  *
  115.  * Prior to using the do-while the compiler would get upset at the
  116.  * "else" because it interpreted the "if" statement as being all
  117.  * done when it reached the ';' after the YY_FATAL_ERROR() call.
  118.  */
  119.  
  120. #define YY_FATAL_ERROR(msg) \
  121.     do \
  122.         { \
  123.         (void) fputs( msg, stderr ); \
  124.         (void) putc( '\n', stderr ); \
  125.         exit( 1 ); \
  126.         } \
  127.     while ( 0 )
  128.  
  129. /* default yywrap function - always treat EOF as an EOF */
  130. #define yywrap() 1
  131.  
  132. /* enter a start condition.  This macro really ought to take a parameter,
  133.  * but we do it the disgusting crufty way forced on us by the ()-less
  134.  * definition of BEGIN
  135.  */
  136. #define BEGIN yy_start = 1 + 2 *
  137.  
  138. /* action number for EOF rule of a given start state */
  139. #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
  140.  
  141. /* special action meaning "start processing a new file" */
  142. #define YY_NEW_FILE \
  143.     do \
  144.         { \
  145.         yy_init_buffer( yy_current_buffer, yyin ); \
  146.         yy_load_buffer_state(); \
  147.         } \
  148.     while ( 0 )
  149.  
  150. /* default declaration of generated scanner - a define so the user can
  151.  * easily add parameters
  152.  */
  153. #define YY_DECL int yylex YY_PROTO(( void )) 
  154.  
  155. /* code executed at the end of each rule */
  156. #define YY_BREAK break;
  157.  
  158. #define YY_END_OF_BUFFER_CHAR 0
  159.  
  160. #ifndef YY_BUF_SIZE
  161. #define YY_BUF_SIZE (YY_READ_BUF_SIZE * 2) /* size of default input buffer */
  162. #endif
  163.  
  164. typedef struct yy_buffer_state *YY_BUFFER_STATE;
  165.  
  166. #define YY_CHAR char
  167. # line 1 "ilex.l"
  168. #define INITIAL 0
  169. # line 6 "ilex.l"
  170. /* above directives increase the various table sizes used by Lex */
  171.  
  172. /*
  173.  *========================================================================== 
  174.  * Copyright 1991 Avinash Chopde, All Rights Reserved.
  175.  *
  176.  * Permission to use, copy, modify and distribute this software and its
  177.  * documentation for any purpose is hereby granted without fee, provided that
  178.  * the above copyright notice appear in all copies and that both that
  179.  * copyright notice and this permission notice appear in supporting
  180.  * documentation, and that the name of Avinash Chopde not be used in
  181.  * advertising or publicity pertaining to distribution of the software
  182.  * without specific, written prior permission.
  183.  * Avinash Chopde makes no representations about the suitability of this
  184.  * software for any purpose.
  185.  * It is provided "as is" without express or implied warranty.
  186.  *
  187.  * AVINASH CHOPDE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  188.  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS,
  189.  * IN NO EVENT SHALL AVINASH CHOPDE BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  190.  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  191.  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  192.  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
  193.  * OF THIS SOFTWARE.
  194.  *
  195.  * Author:  Avinash Chopde, 1991
  196.  *        C2 Colonial Drive #4, Andover, MA 01810, USA.
  197.  *
  198.  */
  199.  
  200. static char S_RCSID[] = "$Header: e:/itrans/src/rcs/ilex.l 1.8 91/10/15 00:13:49 avinash Exp $";
  201.  
  202. #include "itrans.h"
  203. #include "ifm.h"
  204.  
  205. #ifdef MSDOS
  206. #include "y_tab.h"
  207. #else
  208. #include "y.tab.h"
  209. #endif
  210.  
  211. #ifdef YYSTYPE
  212. extern YYSTYPE  yylval;
  213. #else
  214. extern int yylval;
  215. #endif
  216.  
  217. extern int G_lineno;
  218. extern int in_letter(); /* returns TRUE if the parse (iyacc.y) is in the
  219.              * middle of scanning some letter.
  220.              * Used to decide whether to tell the parser to
  221.              * stop looking for more characters, and
  222.              * terminate the letter.
  223.              * That is done by sending in a ENDPREV_TOK.
  224.              */
  225. extern char G_endprev_str[]; /* defined in iyacc.y, used to pass string
  226.                   * to process
  227.                   */
  228.  
  229. static S_lex_ichar(int t);
  230. static S_print(char* t);
  231. static S_skipcomments();
  232.  
  233. static int    S_lang_tok = -1; /* which language being scanned... */
  234.  
  235. #define ITEXT 1
  236. #define DCOMMAND 2
  237. # line 74 "ilex.l"
  238.  
  239. /* done after the current pattern has been matched and before the
  240.  * corresponding action - sets up yytext
  241.  */
  242. #define YY_DO_BEFORE_ACTION \
  243.     yytext = yy_bp; \
  244.     yyleng = yy_cp - yy_bp; \
  245.     yy_hold_char = *yy_cp; \
  246.     *yy_cp = '\0'; \
  247.     yy_c_buf_p = yy_cp;
  248.  
  249. #define EOB_ACT_CONTINUE_SCAN 0
  250. #define EOB_ACT_END_OF_FILE 1
  251. #define EOB_ACT_LAST_MATCH 2
  252.  
  253. /* return all but the first 'n' matched characters back to the input stream */
  254. #define yyless(n) \
  255.     do \
  256.         { \
  257.         /* undo effects of setting up yytext */ \
  258.         *yy_cp = yy_hold_char; \
  259.         yy_c_buf_p = yy_cp = yy_bp + n; \
  260.         YY_DO_BEFORE_ACTION; /* set up yytext again */ \
  261.         } \
  262.     while ( 0 )
  263.  
  264. #define unput(c) yyunput( c, yytext )
  265.  
  266.  
  267. struct yy_buffer_state
  268.     {
  269.     FILE *yy_input_file;
  270.  
  271.     YY_CHAR *yy_ch_buf;        /* input buffer */
  272.     YY_CHAR *yy_buf_pos;    /* current position in input buffer */
  273.  
  274.     /* size of input buffer in bytes, not including room for EOB characters*/
  275.     int yy_buf_size;    
  276.  
  277.     /* number of characters read into yy_ch_buf, not including EOB characters */
  278.     int yy_n_chars;
  279.  
  280.     int yy_eof_status;        /* whether we've seen an EOF on this buffer */
  281. #define EOF_NOT_SEEN 0
  282.     /* "pending" happens when the EOF has been seen but there's still
  283.      * some text process
  284.      */
  285. #define EOF_PENDING 1
  286. #define EOF_DONE 2
  287.     };
  288.  
  289. static YY_BUFFER_STATE yy_current_buffer;
  290.  
  291. /* we provide macros for accessing buffer states in case in the
  292.  * future we want to put the buffer states in a more general
  293.  * "scanner state"
  294.  */
  295. #define YY_CURRENT_BUFFER yy_current_buffer
  296.  
  297.  
  298. /* yy_hold_char holds the character lost when yytext is formed */
  299. static